Skin Logo
Skin SDK: The <logo> element
Positions and sizes the VirtualDJ logo on your skin. The minimum size for the logo is defined by the skin resolution. What might be OK at a high resolution could cause issues at a lower resolution.
Syntax:
<logo circle"" os="">
Inherited Attributes :
visibility="" os="" panel=""
See Global Element Attributes
Attributes :
- circle="false|true" (optional) : If set to true, the logo will be drawn in a (red) circle.
Children:
- <pos x="" y=""/> : Give the (x,y) position that the button will have on the screen. Read further details in Skin Element Position
- <size width="" height=""/> : Give the width and the height that the button will have on the screen. Read further details in Skin Element Position
Examples:
<logo>
<pos x="0" y="0"/>
<size width="100" height="30"/>
</logo>
<logo circle="true">
<pos x="100" y="100"/>
<size width="50" height="50"/>
</logo>